home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / misc / libx11inc.lha / X11 / Xm / MenuShell.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-13  |  1.3 KB  |  52 lines

  1. /* 
  2.  * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC.
  3.  * ALL RIGHTS RESERVED
  4. */ 
  5. /*   $RCSfile: MenuShell.h,v $ $Revision: 1.9 $ $Date: 92/05/14 12:53:39 $ */
  6. /*
  7. *  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
  8. /*
  9. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  10. #ifndef _XmMenuShell_h
  11. #define _XmMenuShell_h
  12.  
  13. #include <Xm/Xm.h>
  14.  
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18.  
  19. externalref WidgetClass xmMenuShellWidgetClass;
  20.  
  21. typedef struct _XmMenuShellClassRec       * XmMenuShellWidgetClass;
  22. typedef struct _XmMenuShellWidgetRec      * XmMenuShellWidget;
  23.  
  24. #ifndef XmIsMenuShell
  25. #define XmIsMenuShell(w) XtIsSubclass(w, xmMenuShellWidgetClass)
  26. #endif /* XmIsMenuShell */
  27.  
  28.  
  29. /********    Public Function Declarations    ********/
  30. #ifdef _NO_PROTO
  31.  
  32. extern Widget XmCreateMenuShell() ;
  33.  
  34. #else
  35.  
  36. extern Widget XmCreateMenuShell( 
  37.                         Widget parent,
  38.                         char *name,
  39.                         ArgList al,
  40.                         Cardinal ac) ;
  41.  
  42. #endif /* _NO_PROTO */
  43. /********    End Public Function Declarations    ********/
  44.  
  45.  
  46. #ifdef __cplusplus
  47. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  48. #endif
  49.  
  50. #endif /* _XmMenuShell_h */
  51. /* DON'T ADD STUFF AFTER THIS #endif */
  52.